home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / nntpsu.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-07-20  |  601 b   |  36 lines

  1. unit nntpsu;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, Mask;
  8.  
  9. type
  10.   TSetupDlg = class(TForm)
  11.     Bevel1: TBevel;
  12.     Label1: TLabel;
  13.     Label2: TLabel;
  14.     Label3: TLabel;
  15.     Label4: TLabel;
  16.     ServerEdit: TEdit;
  17.     UserAddressEdit: TEdit;
  18.     UserNameEdit: TEdit;
  19.     LogFileNameEdit: TEdit;
  20.     OKButton: TButton;
  21.     CancelButton: TButton;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   SetupDlg: TSetupDlg;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. end.
  36.